Skip to content

Version Packages #2907

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Version Packages #2907

wants to merge 1 commit into from

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jun 18, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@leafygreen-ui/checkbox@18.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/code@20.0.0

Major Changes

  • 164b15f: - Move lgIds to context, use LgIdString type, and remove setting DEFAULT_LGID_ROOT.

    • Update all IDs to return the unique root identifier passed to data-lgid:

      Before

      export const getLgIds = (root: LgIdString = DEFAULT_LGID_ROOT) => {
        const ids = {
          root,
          panel: `${DEFAULT_LGID_ROOT}-panel`,
          select: `${root}-select`,
          copyButton: `${DEFAULT_LGID_ROOT}-copy_button`,
          copyTooltip: `${DEFAULT_LGID_ROOT}-copy_tooltip`,
          expandButton: `${root}-expand_button`,
          skeleton: `${root}-skeleton`,
          pre: `${root}-pre`,
          title: `${DEFAULT_LGID_ROOT}-title`,
        } as const;
        return ids;
      };

      After

      export const getLgIds = (root: LgIdString = DEFAULT_LGID_ROOT) => {
        const ids = {
          root,
          panel: `${root}-panel`, // Updated to use unique root identifier
          select: `${root}-select`,
          copyButton: `${root}-copy_button`, // Updated to use unique root identifier
          copyTooltip: `${root}-copy_tooltip`, // Updated to use unique root identifier
          expandButton: `${root}-expand_button`,
          skeleton: `${root}-skeleton`,
          pre: `${root}-pre`,
          title: `${root}-title`, // Updated to use unique root identifier
        } as const;
        return ids;
      };

Minor Changes

  • 04e55b3: Exports CopyButton component

Patch Changes

  • 4f601e3: Adds missing @lg-tools/build as a devDep in local package.json
  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/select@16.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/skeleton-loader@3.0.2
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/confirmation-modal@9.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/text-input@16.0.0
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/modal@19.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/form-field@4.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/form-footer@8.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/banner@10.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0

@leafygreen-ui/gallery-indicator@3.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/menu@31.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/descendants@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/input-option@4.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/modal@19.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/portal@7.0.1
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/password-input@5.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/form-field@4.0.0
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/select@16.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/form-field@4.0.0
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/input-option@4.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/split-button@6.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/menu@31.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/table@15.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/checkbox@18.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/tabs@16.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/descendants@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/text-area@12.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/form-field@4.0.0
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/text-input@16.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/form-field@4.0.0
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/typography@22.0.0

Major Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.

    Removes public exports for:

    • LGIDs
    • LGIDS_CHECKBOX
    • LGIDS_FORM_FIELD
    • LGIDS_SELECT
    • LGIDS_TYPOGRAPHY

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1

@lg-charts/core@1.4.0

Minor Changes

  • 2fecbc0: Ability to optionally add icon directly next to title in chart header.

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @lg-charts/chart-card@1.0.2
    • @lg-charts/colors@1.0.1
    • @lg-charts/series-provider@1.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/icon@14.1.0

Minor Changes

  • 1eafbb5: Adds Shield to glyph set

@lg-charts/chart-card@1.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/tokens@3.1.1

@lg-charts/colors@1.0.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0

@lg-charts/drag-provider@1.0.5

Patch Changes

  • Updated dependencies [2fecbc0]
    • @lg-charts/core@1.4.0
    • @lg-charts/chart-card@1.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1

@lg-charts/legend@1.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/checkbox@18.0.0
    • @lg-charts/series-provider@1.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@lg-charts/series-provider@1.0.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @lg-charts/colors@1.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1

@lg-chat/avatar@5.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/avatar@3.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/chat-disclaimer@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/marketing-modal@6.0.2
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/chat-window@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @lg-chat/avatar@5.0.2
    • @lg-chat/title-bar@4.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/fixed-chat-window@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @lg-chat/chat-window@4.0.2
    • @lg-chat/title-bar@4.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/input-bar@8.0.3

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/badge@10.0.2
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/input-option@4.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/search-input@6.0.2
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/lg-markdown@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [04e55b3]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [4f601e3]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/code@20.0.0
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/message@6.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @lg-chat/lg-markdown@4.0.2
    • @lg-chat/rich-links@3.0.2
    • @leafygreen-ui/banner@10.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/message-feed@5.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/icon@14.1.0
    • @lg-chat/avatar@5.0.2
    • @lg-chat/message@6.0.2
    • @lg-chat/message-rating@4.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/message-feedback@5.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/text-area@12.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/message-prompts@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/message-rating@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/rich-links@3.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/card@13.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1

@lg-chat/title-bar@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @lg-chat/avatar@5.0.2
    • @leafygreen-ui/badge@10.0.2
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/a11y@3.0.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/hooks@9.0.1

@leafygreen-ui/avatar@3.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/logo@11.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/badge@10.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/banner@10.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/button@24.0.2

Patch Changes

  • 164b15f: Use LgIdString type and remove setting DEFAULT_LGID_ROOT.
  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/ripple@2.0.2

@leafygreen-ui/callout@12.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/card@13.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/chip@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/inline-definition@9.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/combobox@12.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/form-field@4.0.0
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/checkbox@18.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/chip@4.0.2
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/input-option@4.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/copyable@11.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/date-picker@4.0.2

Patch Changes

  • 164b15f: Updates spec file to use updated test ids for @leafygreen-ui/form-field components
  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/form-field@4.0.0
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/select@16.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/date-utils@0.3.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/date-utils@0.3.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1

@leafygreen-ui/descendants@3.0.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1

@leafygreen-ui/drawer@4.0.1

Patch Changes

  • 164b15f: Use LgIdString type and remove setting DEFAULT_LGID_ROOT.
  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/tabs@16.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/toolbar@1.0.1

@leafygreen-ui/empty-state@3.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/badge@10.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/expandable-card@5.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/card@13.0.2
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/guide-cue@8.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/hooks@9.0.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1

@leafygreen-ui/icon-button@17.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/info-sprinkle@5.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/inline-definition@9.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/input-option@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/leafygreen-provider@5.0.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/hooks@9.0.1

@leafygreen-ui/lib@15.0.1

Patch Changes

  • 164b15f: Export LgIdString type
  • 518ce41: Additional support for getting node text content from functional components.

@leafygreen-ui/loading-indicator@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/logo@11.0.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/palette@5.0.0

@leafygreen-ui/marketing-modal@6.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/modal@19.0.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/number-input@5.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/button@24.0.2
    • @leafygreen-ui/form-field@4.0.0
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/select@16.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/ordered-list@3.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/descendants@3.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/pagination@4.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/select@16.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/pipeline@8.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/polymorphic@3.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1

@leafygreen-ui/popover@14.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/portal@7.0.1
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/portal@7.0.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/hooks@9.0.1

@leafygreen-ui/radio-box-group@15.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/radio-group@13.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/ripple@2.0.2

Patch Changes

  • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/search-input@6.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/input-option@4.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/segmented-control@11.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/side-nav@17.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/polymorphic@3.0.2
    • @leafygreen-ui/portal@7.0.1
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/skeleton-loader@3.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/card@13.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/stepper@6.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/toast@8.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/portal@7.0.1
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/toggle@12.0.2

Patch Changes

  • 164b15f: Updates data-lgid and data-testid to use scope based test IDs. These test IDs are generated using the helper utility getLgIds. For more information check out the section in the styleguide about getLgIds.
  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/a11y@3.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1

@leafygreen-ui/tokens@3.1.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/palette@5.0.0

@leafygreen-ui/toolbar@1.0.1

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/descendants@3.0.1
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/icon-button@17.0.2
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1
    • @leafygreen-ui/tooltip@14.0.2

@leafygreen-ui/tooltip@14.0.2

Patch Changes

  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
  • Updated dependencies [1eafbb5]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/icon@14.1.0
    • @leafygreen-ui/hooks@9.0.1
    • @leafygreen-ui/leafygreen-provider@5.0.1
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/popover@14.0.2
    • @leafygreen-ui/tokens@3.1.1

@lg-tools/storybook-addon@0.5.2

Patch Changes

  • dd94a14: Adds missing ./static directory to package exports
  • Updated dependencies [164b15f]
  • Updated dependencies [518ce41]
  • Updated dependencies [164b15f]
    • @leafygreen-ui/lib@15.0.1
    • @leafygreen-ui/typography@22.0.0
    • @leafygreen-ui/palette@5.0.0
    • @leafygreen-ui/tokens@3.1.1
    • @lg-tools/storybook-decorators@1.0.2

@lg-tools/storybook-decorators@1.0.2

Patch Changes

  • @leafygreen-ui/banner@10.0.2
  • @leafygreen-ui/leafygreen-provider@5.0.1
  • @leafygreen-ui/palette@5.0.0
  • @leafygreen-ui/tokens@3.1.1

@github-actions github-actions bot requested a review from a team as a code owner June 18, 2025 20:21
@github-actions github-actions bot requested review from shaneeza and removed request for a team June 18, 2025 20:21
@github-actions github-actions bot force-pushed the changeset-release/main branch 7 times, most recently from a60c98b to bf9f126 Compare June 26, 2025 16:26
@github-actions github-actions bot force-pushed the changeset-release/main branch from bf9f126 to 5f2ee8b Compare June 26, 2025 20:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants